// // Copyright (c) 2009 All Right Reserved // // Stephen Toub // stoub@microsoft.com // 2009-01-01 // Contains ... using System; namespace LargoCommon.Midi { /// A lyric name meta event. [Serializable] public sealed class MetaLyric : MetaAbstractText { #region Fields /// The meta id for this event. private const byte EventMetaId = 0x5; #endregion #region Constructors /// Initializes a new instance of the MetaLyric class. /// The amount of time before this event. /// The text associated with the event. public MetaLyric(long deltaTime, string text) : base(deltaTime, EventMetaId, text) { } #endregion } }